home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Atari Mega Archive 1
/
Atari Mega Archive - Volume 1.iso
/
mint
/
shells
/
bashsrc.zoo
/
trap.h
< prev
next >
Wrap
C/C++ Source or Header
|
1991-06-05
|
374b
|
21 lines
/* trap.h -- data structures used in the trap mechanism. */
#ifndef NSIG
#include <signal.h>
#endif
#ifndef NSIG
#define NSIG 64
#endif
#define NO_SIG -1
#define DEFAULT_SIG SIG_DFL
#define IGNORE_SIG 0
#define signal_object_p(x) (decode_signal (x) != NO_SIG)
extern char *trap_list[NSIG];
extern char *signal_name ();
extern int signal_decode ();